home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / s-tasoli.adb < prev    next >
Text File  |  1996-01-30  |  3KB  |  94 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. --            S Y S T E M . T A S K I N G _ S O F T _ L I N K S             --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.7 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with System.Task_Specific_Data;
  27.  
  28. package body System.Tasking_Soft_Links is
  29.  
  30.    --------------------
  31.    -- Abort_Defer_NT --
  32.    --------------------
  33.  
  34.    procedure Abort_Defer_NT is
  35.    begin
  36.       null;
  37.    end Abort_Defer_NT;
  38.  
  39.    ----------------------
  40.    -- Abort_Undefer_NT --
  41.    ----------------------
  42.  
  43.    procedure Abort_Undefer_NT is
  44.    begin
  45.       null;
  46.    end Abort_Undefer_NT;
  47.  
  48.    ------------------------
  49.    -- Get_TSD_Address_NT --
  50.    ------------------------
  51.  
  52.    function Get_TSD_Address_NT (Dummy : Boolean) return  Address is
  53.    begin
  54.       return System.Task_Specific_Data.Non_Tasking_TSD;
  55.    end Get_TSD_Address_NT;
  56.  
  57.    ------------------
  58.    -- Task_Lock_NT --
  59.    ------------------
  60.  
  61.    procedure Task_Lock_NT is
  62.    begin
  63.       null;
  64.    end Task_Lock_NT;
  65.  
  66.    --------------------
  67.    -- Task_Unlock_NT --
  68.    --------------------
  69.  
  70.    procedure Task_Unlock_NT is
  71.    begin
  72.       null;
  73.    end Task_Unlock_NT;
  74.  
  75.    ----------------
  76.    -- SS_Init_NT --
  77.    ----------------
  78.  
  79.    procedure SS_Init_NT (Stk : out Address; Size : Natural)is
  80.    begin
  81.       null;
  82.    end SS_Init_NT;
  83.  
  84.    ----------------
  85.    -- SS_Free_NT --
  86.    ----------------
  87.  
  88.    procedure SS_Free_NT (Stk : Address) is
  89.    begin
  90.       null;
  91.    end SS_Free_NT;
  92.  
  93. end System.Tasking_Soft_Links;
  94.